home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / APW Interfaces / CInclude / Scheduler.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-26  |  781 b   |  26 lines  |  [TEXT/MPS ]

  1. /********************************************
  2. ; File: Scheduler.h
  3. ;
  4. ;
  5. ; Copyright Apple Computer, Inc.1986-90
  6. ; All Rights Reserved
  7. ;
  8. ********************************************/
  9. #ifndef __TYPES__
  10. #include <TYPES.h>
  11. #endif
  12.  
  13. #ifndef __SCHEDULER__
  14. #define __SCHEDULER__
  15.  
  16. #define busyFlag 0x00E100FFL
  17. extern pascal Boolean SchAddTask() inline(0x0907,dispatcher);
  18. extern pascal void SchBootInit() inline(0x0107,dispatcher);
  19. extern pascal void SchFlush() inline(0x0A07,dispatcher);
  20. extern pascal void SchReset() inline(0x0507,dispatcher);
  21. extern pascal void SchShutDown() inline(0x0307,dispatcher);
  22. extern pascal void SchStartUp() inline(0x0207,dispatcher);
  23. extern pascal Boolean SchStatus() inline(0x0607,dispatcher);
  24. extern pascal Word SchVersion() inline(0x0407,dispatcher);
  25. #endif
  26.